home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00051_Script_Cursor-Hand < prev    next >
Text File  |  1999-02-25  |  431b  |  18 lines

  1. property whichSprite
  2.  
  3. on mouseWithin me
  4.   cursor 260
  5.   set the visibility of sprite whichSprite = TRUE
  6.   set the loc of sprite whichSprite = point ( the mouseh, the mousev + 30)
  7. end
  8.  
  9. on mouseLeave me
  10.   cursor -1
  11.   set the visibility of sprite whichSprite = FALSE
  12. end
  13.  
  14. on getPropertyDescriptionList
  15. set p_list = [¼
  16.             whichSprite: [ #default:0, #format:#integer, #comment:"whichSprite"]] 
  17. return p_list
  18. end